home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / unixlib.lha / unix / include / sys / param.h < prev    next >
C/C++ Source or Header  |  1996-11-09  |  411b  |  22 lines

  1. #ifndef _PARAM_H
  2. #define _PARAM_H
  3.  
  4. /*
  5.  * Let's assume we are BSD compatible
  6.  */
  7. #define BSD    199402    /* Feb, 1994 system version (year & month) */
  8.  
  9. #undef  FILENAME_MAX
  10. #define MAXPATHLEN 254
  11. #define FILENAME_MAX MAXPATHLEN /* Should be in stdio.h */
  12. #ifndef DEV_BSIZE
  13. #define DEV_BSIZE 1024
  14. #endif
  15. #define NOFILE 20 /* maximum number of open files (from stdio.h) */
  16.  
  17. #ifndef NULL
  18. #define NULL (0)
  19. #endif
  20.  
  21. #endif
  22.